home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(enterFrame){
- if(Key.isDown(40) && _currentframe < 29 && movedown == false)
- {
- play();
- movedown = true;
- }
- if(Key.isDown(38) && moveup == false && _currentframe > 1 && movedown == false)
- {
- mvp = _currentframe - 4;
- moveup = true;
- }
- if(moveup == true)
- {
- this.gotoAndStop(_currentframe - 1);
- if(this._currentframe <= mvp)
- {
- moveup = false;
- }
- }
- if(Key.isDown(13))
- {
- if(this._currentframe == 1)
- {
- _root.gotoAndStop("challangemode");
- }
- if(this._currentframe == 5)
- {
- _root.gotoAndStop("1playertype1");
- }
- if(this._currentframe == 9)
- {
- _root.gotoAndStop("2playertype1");
- }
- if(this._currentframe == 13)
- {
- _root.gotoAndStop("avoid");
- }
- if(this._currentframe == 17)
- {
- _root.gotoAndStop("instructions");
- }
- if(this._currentframe == 21)
- {
- _root.gotoAndStop("credits");
- }
- if(this._currentframe == 25)
- {
- getURL("http://www.crazymonkeygames.com",_blank);
- }
- if(this._currentframe == 29)
- {
- getUrl("http://scores.crazymonkeygames.com/hs/listscores.php?id=29", "_blank");
- }
- }
- }
-